home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
lib
/
mntinc43.zoo
/
mntinc
/
param.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-05-15
|
436b
|
16 lines
#ifndef _PARAM_H
#define _PARAM_H
#define MAXPATHLEN 128 /* same as FILENAME_MAX in stdio.h */
#define NOFILE 20 /* same as OPEN_MAX in limits.h */
#ifdef __MINT__
# define HZ 200 /* ticks/second reported by times() */
# define NCARGS 1024 /* actually, we don't limit this */
#else
# define HZ 60 /* ticks/second reported by times() */
# define NCARGS 126 /* max. no. of characters in argv */
#endif
#endif /* _PARAM_H */